# import the time module import time # define the countdown func. def countdown(t): while t: mins, secs = divmod(t, 60) timer = '{:02d}:{:02d}'.format(mins, secs) print(timer, end="\r") time.sleep(1) t -= 1 print('Happy Chinese New Year!') # input time in seconds t = input("Enter the time in seconds: ") # function call countdown(int(t)) Home | Asian Community Resource Center
top of page

Asian Community Resource Center

Our Vision

Asian Community Resource Center

To inform, educate, and promote health and wellness in our Asian, Pacific Islander and other ethnic communities.

If you would like to support us, please contact us at

4.png
bottom of page